home *** CD-ROM | disk | FTP | other *** search
/ Crosscountry USA Photo Safari / Crosscountry USA Photo Safari.iso / Data / safari_usa / autoexec.c4 next >
Text File  |  2002-12-20  |  450b  |  22 lines

  1. {
  2.   @BOOT
  3.   {
  4.     /* autoexec.c4 files cannot be pk3'ed! */
  5.     
  6.     str language;
  7.     str gamepath;
  8.  
  9.     gamepath = CVarGetStr("GAMEPATH");
  10.  
  11.     AddGamePath("cc_base");
  12.     AddGamePath(gamepath);
  13.  
  14.     language = CVarGetStr("LANGUAGE");
  15.  
  16.     MangleLoadTable(StrFormatStr("cc_base_%s.txt", language));
  17.     MangleLoadTable(StrFormatStr("%s.txt", language));
  18.     
  19.     ResParseEvent(ResByName("cc_base/autoexec.c4"),"@boot");
  20.   } 
  21. }
  22.